github.com/klauspost/compress/zstd.byteReader.b (field)

14 uses

	github.com/klauspost/compress/zstd (current package)
		blockdec.go#L547: 		br := byteReader{b: in, off: 0}
		bytereader.go#L12: 	b   []byte
		bytereader.go#L23: 	return b.off > len(b.b)
		bytereader.go#L28: 	b2 := b.b[b.off:]
		bytereader.go#L39: 	v := b.b[b.off]
		bytereader.go#L49: 			v = (v << 8) | uint32(b.b[len(b.b)-i])
		bytereader.go#L53: 	b2 := b.b[b.off:]
		bytereader.go#L65: 	b2 := b.b[b.off:]
		bytereader.go#L76: 	return b.b[b.off:]
		bytereader.go#L81: 	return len(b.b) - b.off
		dict.go#L98: 		b:   b,
		fse_decoder.go#L161: 			bitCount -= (uint)(8 * (len(b.b) - 4 - b.off))
		fse_decoder.go#L162: 			b.off = len(b.b) - 4